home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…tion Library 4 (Reseller) / Apple Ref. & Pres. Lib.v4.0.iso / 4-Demos / Apple Demos / Tutorials / Display Card 4•8⁄8•24 Training / Display Card 4•8_8•24 Training / card_9797.txt < prev    next >
Text File  |  1990-03-19  |  14KB  |  669 lines

  1. -- card: 9797 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 10579
  5. -- name: test 1
  6. ----- HyperTalk script -----
  7. on openCard
  8.   global inprogress
  9.   if inprogress is false then show cd fld "instruction 1"
  10.   hide cd fld "ClicktoContinue"
  11.   show cd btn "Check my Answers"
  12.   repeat with f = 15 to 22
  13.     hide cd fld f
  14.   end repeat
  15.   repeat with x = 1 to 4
  16.     hide cd fld ("responses" && x)
  17.   end repeat
  18. end openCard
  19.  
  20. on closeCard
  21.   global maploc, cardloc
  22.   put word 1 of the short name of this card into maploc
  23.   put word 2 of the short name of this card into cardloc
  24.   push card
  25. end closeCard
  26.  
  27.  
  28.  
  29. -- part 1 (field)
  30. -- low flags: 01
  31. -- high flags: 4000
  32. -- rect: left=367 top=96 right=115 bottom=445
  33. -- title width / last selected line: 0
  34. -- icon id / first selected line: 0 / 0
  35. -- text alignment: 0
  36. -- font id: 156
  37. -- text size: 14
  38. -- style flags: 0
  39. -- line height: 16
  40. -- part name: answer 1
  41. ----- HyperTalk script -----
  42. on mouseup
  43.   toggleResponses
  44. end mouseup
  45.  
  46.  
  47.  
  48. -- part 2 (field)
  49. -- low flags: 01
  50. -- high flags: 4000
  51. -- rect: left=368 top=128 right=145 bottom=447
  52. -- title width / last selected line: 0
  53. -- icon id / first selected line: 0 / 0
  54. -- text alignment: 0
  55. -- font id: 156
  56. -- text size: 14
  57. -- style flags: 0
  58. -- line height: 16
  59. -- part name: answer 2
  60. ----- HyperTalk script -----
  61. on mouseup
  62.   toggleResponses
  63. end mouseup
  64.  
  65.  
  66.  
  67. -- part 3 (field)
  68. -- low flags: 01
  69. -- high flags: 4000
  70. -- rect: left=317 top=160 right=177 bottom=412
  71. -- title width / last selected line: 0
  72. -- icon id / first selected line: 0 / 0
  73. -- text alignment: 0
  74. -- font id: 156
  75. -- text size: 14
  76. -- style flags: 0
  77. -- line height: 16
  78. -- part name: answer 3
  79. ----- HyperTalk script -----
  80. on mouseup
  81.   toggleResponses
  82. end mouseup
  83.  
  84.  
  85. -- part 4 (field)
  86. -- low flags: 01
  87. -- high flags: 4000
  88. -- rect: left=368 top=206 right=224 bottom=463
  89. -- title width / last selected line: 0
  90. -- icon id / first selected line: 0 / 0
  91. -- text alignment: 0
  92. -- font id: 156
  93. -- text size: 14
  94. -- style flags: 0
  95. -- line height: 16
  96. -- part name: answer 4
  97. ----- HyperTalk script -----
  98. on mouseup
  99.   toggleResponses
  100. end mouseup
  101.  
  102.  
  103. -- part 6 (field)
  104. -- low flags: 81
  105. -- high flags: 2004
  106. -- rect: left=4 top=45 right=121 bottom=106
  107. -- title width / last selected line: 0
  108. -- icon id / first selected line: 0 / 0
  109. -- text alignment: 0
  110. -- font id: 158
  111. -- text size: 14
  112. -- style flags: 0
  113. -- line height: 16
  114. -- part name: responses 1
  115. ----- HyperTalk script -----
  116. on mouseup
  117.   chooseResponses
  118. end mouseup
  119.  
  120.  
  121.  
  122. -- part 8 (field)
  123. -- low flags: 81
  124. -- high flags: 2004
  125. -- rect: left=0 top=140 right=199 bottom=112
  126. -- title width / last selected line: 0
  127. -- icon id / first selected line: 0 / 0
  128. -- text alignment: 0
  129. -- font id: 158
  130. -- text size: 14
  131. -- style flags: 0
  132. -- line height: 16
  133. -- part name: responses 2
  134. ----- HyperTalk script -----
  135. on mouseup
  136.   chooseResponses
  137. end mouseup
  138.  
  139.  
  140.  
  141. -- part 9 (field)
  142. -- low flags: 81
  143. -- high flags: 2004
  144. -- rect: left=3 top=166 right=244 bottom=105
  145. -- title width / last selected line: 0
  146. -- icon id / first selected line: 0 / 0
  147. -- text alignment: 0
  148. -- font id: 158
  149. -- text size: 14
  150. -- style flags: 0
  151. -- line height: 16
  152. -- part name: responses 3
  153. ----- HyperTalk script -----
  154. on mouseup
  155.   chooseResponses
  156. end mouseup
  157.  
  158.  
  159.  
  160. -- part 10 (field)
  161. -- low flags: 81
  162. -- high flags: 2004
  163. -- rect: left=1 top=203 right=265 bottom=117
  164. -- title width / last selected line: 0
  165. -- icon id / first selected line: 0 / 0
  166. -- text alignment: 0
  167. -- font id: 158
  168. -- text size: 14
  169. -- style flags: 0
  170. -- line height: 16
  171. -- part name: responses 4
  172. ----- HyperTalk script -----
  173. on mouseup
  174.   chooseResponses
  175. end mouseup
  176.  
  177.  
  178.  
  179. -- part 7 (field)
  180. -- low flags: 81
  181. -- high flags: 0007
  182. -- rect: left=106 top=30 right=116 bottom=234
  183. -- title width / last selected line: 0
  184. -- icon id / first selected line: 0 / 0
  185. -- text alignment: 0
  186. -- font id: 3
  187. -- text size: 9
  188. -- style flags: 0
  189. -- line height: 12
  190. -- part name: Your Responses
  191.  
  192.  
  193. -- part 13 (field)
  194. -- low flags: 81
  195. -- high flags: 0002
  196. -- rect: left=369 top=19 right=105 bottom=385
  197. -- title width / last selected line: 0
  198. -- icon id / first selected line: 0 / 0
  199. -- text alignment: 0
  200. -- font id: 3
  201. -- text size: 9
  202. -- style flags: 0
  203. -- line height: 12
  204. -- part name: Your Answers
  205.  
  206.  
  207. -- part 14 (field)
  208. -- low flags: 81
  209. -- high flags: 0002
  210. -- rect: left=10 top=12 right=67 bottom=28
  211. -- title width / last selected line: 0
  212. -- icon id / first selected line: 0 / 0
  213. -- text alignment: 0
  214. -- font id: 3
  215. -- text size: 9
  216. -- style flags: 0
  217. -- line height: 12
  218. -- part name: our Answers
  219.  
  220.  
  221. -- part 15 (field)
  222. -- low flags: 81
  223. -- high flags: 0002
  224. -- rect: left=34 top=12 right=100 bottom=87
  225. -- title width / last selected line: 0
  226. -- icon id / first selected line: 0 / 0
  227. -- text alignment: 0
  228. -- font id: 3
  229. -- text size: 9
  230. -- style flags: 0
  231. -- line height: 12
  232. -- part name: memoList
  233.  
  234.  
  235. -- part 18 (button)
  236. -- low flags: 00
  237. -- high flags: A003
  238. -- rect: left=132 top=312 right=339 bottom=274
  239. -- title width / last selected line: 0
  240. -- icon id / first selected line: 0 / 0
  241. -- text alignment: 1
  242. -- font id: 0
  243. -- text size: 12
  244. -- style flags: 0
  245. -- line height: 16
  246. -- part name: Check my answers
  247. ----- HyperTalk script -----
  248. on mouseUp
  249.   global memolist, testNumber, inProgress
  250.   put "" into memolist
  251.   set the cursor to busy
  252.   put 1 into r
  253.   repeat with r = 1 to 4  --the number of lines in cd fld "Our Answers"
  254.     if line r of cd fld "your Responses" is "" then
  255.       answer "You're not done, yet!" with "Ooops!"
  256.       put true into tryAgain
  257.       exit mouseup
  258.     else
  259.       put 1 into rLine
  260.       put false into tryAgain
  261.       repeat with r = 1 to 4 --the number of lines of cd fld "Our Answers"
  262.         if line rLine of cd fld "Your Answers" is in line rLine of cd fld "Our Answers" then
  263.           put true into okAnswer
  264.         else
  265.           put false into okAnswer
  266.         end if
  267.         if okAnswer then
  268.           put true into line rline of cd fld "memoList"
  269.           put true into item r of memolist
  270.         else
  271.           put false into line rline of cd fld "memolist"
  272.           put false into item r of memolist
  273.         end if
  274.         add 1 to rLine
  275.       end repeat
  276.     end if
  277.   end repeat
  278.   if tryAgain is false then
  279.     set cursor to hand
  280.     hide cd btn "Check my answers"
  281.     show cd fld "clicktocontinue"
  282.   end if
  283.  
  284.   put "1" into testnumber
  285.   repeat with i = 1 to 4 --the number of lines of cd fld "MemoList"
  286.     put ("review" && i) into theButton
  287.     set the hilite of cd btn theButton to true
  288.     get line i of cd fld "MemoList"
  289.     if it is true then
  290.       put ("comment" && i && "true") into theComment
  291.       show cd fld theComment
  292.     else
  293.       put ("comment" && i && "false") into theComment
  294.       show cd fld theComment
  295.     end if
  296.     wait until the mouseclick
  297.     set the hilite of cd btn theButton to false
  298.     hide cd fld theComment
  299.   end repeat
  300.   hide cd fld "clicktocontinue"
  301.   if cd fld "MemoList" contains "False" then
  302.     answer "Do you want to try again?" with "Yes" or "No"
  303.     if it is "Yes" then
  304.       put empty into cd fld "memolist"
  305.       put true into inProgress
  306.       show cd btn "Check my Answers"
  307.       send opencard
  308.       exit mouseup
  309.     else
  310.       ScoreReview
  311.     end if
  312.   else
  313.     ScoreReview
  314.   end if
  315. end mouseUp
  316.  
  317.  
  318.  
  319. -- part 24 (button)
  320. -- low flags: 00
  321. -- high flags: 2000
  322. -- rect: left=365 top=95 right=113 bottom=442
  323. -- title width / last selected line: 0
  324. -- icon id / first selected line: 0 / 0
  325. -- text alignment: 1
  326. -- font id: 0
  327. -- text size: 12
  328. -- style flags: 0
  329. -- line height: 16
  330. -- part name: review 1
  331. ----- HyperTalk script -----
  332. on mouseUp
  333.   hide card field "instruction 1"
  334.   toggleResponses
  335. end mouseUp
  336.  
  337.  
  338.  
  339. -- part 25 (button)
  340. -- low flags: 00
  341. -- high flags: 2000
  342. -- rect: left=369 top=128 right=145 bottom=446
  343. -- title width / last selected line: 0
  344. -- icon id / first selected line: 0 / 0
  345. -- text alignment: 1
  346. -- font id: 0
  347. -- text size: 12
  348. -- style flags: 0
  349. -- line height: 16
  350. -- part name: review 2
  351. ----- HyperTalk script -----
  352. on mouseUp
  353.   toggleResponses
  354. end mouseUp
  355.  
  356.  
  357.  
  358. -- part 26 (button)
  359. -- low flags: 00
  360. -- high flags: 2000
  361. -- rect: left=318 top=160 right=177 bottom=410
  362. -- title width / last selected line: 0
  363. -- icon id / first selected line: 0 / 0
  364. -- text alignment: 1
  365. -- font id: 0
  366. -- text size: 12
  367. -- style flags: 0
  368. -- line height: 16
  369. -- part name: review 3
  370. ----- HyperTalk script -----
  371. on mouseUp
  372.   toggleResponses
  373. end mouseUp
  374.  
  375.  
  376.  
  377. -- part 27 (button)
  378. -- low flags: 00
  379. -- high flags: 2000
  380. -- rect: left=366 top=208 right=224 bottom=463
  381. -- title width / last selected line: 0
  382. -- icon id / first selected line: 0 / 0
  383. -- text alignment: 1
  384. -- font id: 0
  385. -- text size: 12
  386. -- style flags: 0
  387. -- line height: 16
  388. -- part name: review 4
  389. ----- HyperTalk script -----
  390. on mouseUp
  391.   toggleResponses
  392. end mouseUp
  393.  
  394.  
  395.  
  396. -- part 29 (field)
  397. -- low flags: 81
  398. -- high flags: 2004
  399. -- rect: left=170 top=3 right=88 bottom=412
  400. -- title width / last selected line: 0
  401. -- icon id / first selected line: 0 / 0
  402. -- text alignment: 1
  403. -- font id: 158
  404. -- text size: 14
  405. -- style flags: 0
  406. -- line height: 18
  407. -- part name: Comment 1 false
  408.  
  409.  
  410. -- part 30 (field)
  411. -- low flags: 81
  412. -- high flags: 2004
  413. -- rect: left=30 top=13 right=93 bottom=289
  414. -- title width / last selected line: 0
  415. -- icon id / first selected line: 0 / 0
  416. -- text alignment: 1
  417. -- font id: 158
  418. -- text size: 14
  419. -- style flags: 0
  420. -- line height: 18
  421. -- part name: Comment 1 true
  422.  
  423.  
  424. -- part 31 (field)
  425. -- low flags: 81
  426. -- high flags: 2004
  427. -- rect: left=100 top=163 right=244 bottom=385
  428. -- title width / last selected line: 0
  429. -- icon id / first selected line: 0 / 0
  430. -- text alignment: 1
  431. -- font id: 158
  432. -- text size: 14
  433. -- style flags: 0
  434. -- line height: 18
  435. -- part name: Comment 2 false
  436.  
  437.  
  438. -- part 32 (field)
  439. -- low flags: 81
  440. -- high flags: 2004
  441. -- rect: left=100 top=113 right=193 bottom=349
  442. -- title width / last selected line: 0
  443. -- icon id / first selected line: 0 / 0
  444. -- text alignment: 1
  445. -- font id: 158
  446. -- text size: 14
  447. -- style flags: 0
  448. -- line height: 18
  449. -- part name: Comment 2 true
  450.  
  451.  
  452. -- part 34 (field)
  453. -- low flags: 81
  454. -- high flags: 2004
  455. -- rect: left=66 top=194 right=256 bottom=300
  456. -- title width / last selected line: 0
  457. -- icon id / first selected line: 0 / 0
  458. -- text alignment: 1
  459. -- font id: 158
  460. -- text size: 14
  461. -- style flags: 0
  462. -- line height: 18
  463. -- part name: Comment 3 false
  464.  
  465.  
  466. -- part 35 (field)
  467. -- low flags: 81
  468. -- high flags: 2004
  469. -- rect: left=23 top=196 right=294 bottom=356
  470. -- title width / last selected line: 0
  471. -- icon id / first selected line: 0 / 0
  472. -- text alignment: 1
  473. -- font id: 158
  474. -- text size: 14
  475. -- style flags: 0
  476. -- line height: 18
  477. -- part name: Comment 3 true
  478.  
  479.  
  480. -- part 36 (field)
  481. -- low flags: 81
  482. -- high flags: 2004
  483. -- rect: left=26 top=136 right=218 bottom=334
  484. -- title width / last selected line: 0
  485. -- icon id / first selected line: 0 / 0
  486. -- text alignment: 1
  487. -- font id: 158
  488. -- text size: 14
  489. -- style flags: 0
  490. -- line height: 18
  491. -- part name: Comment 4 false
  492.  
  493.  
  494. -- part 37 (field)
  495. -- low flags: 81
  496. -- high flags: 2004
  497. -- rect: left=25 top=5 right=89 bottom=333
  498. -- title width / last selected line: 0
  499. -- icon id / first selected line: 0 / 0
  500. -- text alignment: 1
  501. -- font id: 158
  502. -- text size: 14
  503. -- style flags: 0
  504. -- line height: 18
  505. -- part name: Comment 4 true
  506.  
  507.  
  508. -- part 41 (field)
  509. -- low flags: 81
  510. -- high flags: 2004
  511. -- rect: left=59 top=312 right=341 bottom=277
  512. -- title width / last selected line: 0
  513. -- icon id / first selected line: 0 / 0
  514. -- text alignment: 1
  515. -- font id: 157
  516. -- text size: 14
  517. -- style flags: 0
  518. -- line height: 18
  519. -- part name: ClicktoContinue
  520.  
  521.  
  522. -- part 45 (field)
  523. -- low flags: 81
  524. -- high flags: 0007
  525. -- rect: left=0 top=20 right=331 bottom=129
  526. -- title width / last selected line: 0
  527. -- icon id / first selected line: 0 / 0
  528. -- text alignment: 0
  529. -- font id: 156
  530. -- text size: 14
  531. -- style flags: 0
  532. -- line height: 18
  533. -- part name: instruction 1
  534. ----- HyperTalk script -----
  535. on mouseup
  536.   hide me
  537. end mouseup
  538.  
  539.  
  540.  
  541. -- part contents for background part 10
  542. ----- text -----
  543. Features and Advantages #1.
  544.  
  545.  
  546. -- part contents for background part 6
  547. ----- text -----
  548.  
  549. The Macintosh Display Card 8‚Ä¢24 is an                            card.
  550.  
  551. This video card is capable of displaying                           grays.
  552.  
  553. The video card supports Apple                                for interlaced displays.
  554.  
  555. The Macintosh Display Card 4‚Ä¢8 can be                                a  
  556. Macintosh Display Card 8‚Ä¢24.
  557.  
  558.  
  559.  
  560.  
  561. -- part contents for background part 4
  562. ----- text -----
  563. Macintosh Display Card 4‚Ä¢8 and 8‚Ä¢24
  564.  
  565. -- part contents for background part 5
  566. ----- text -----
  567. Training Evaluation
  568.  
  569. -- part contents for card part 6
  570. ----- text -----
  571. powerful
  572. 256-color
  573. true color
  574. 8-bit/24-bit
  575.  
  576. -- part contents for card part 8
  577. ----- text -----
  578. 16.7 million
  579. 256
  580. 16
  581.  
  582. -- part contents for card part 9
  583. ----- text -----
  584. color
  585. convolution
  586. QuickDraw
  587. standards
  588.  
  589.  
  590. -- part contents for card part 10
  591. ----- text -----
  592. traded for
  593. upgraded to
  594. accelerated to
  595.  
  596. -- part contents for card part 14
  597. ----- text -----
  598. 4
  599. 2
  600. 2
  601. 2
  602.  
  603.  
  604. -- part contents for card part 29
  605. ----- text -----
  606.  
  607. You should review 
  608. the Product Description section.
  609.  
  610. -- part contents for card part 30
  611. ----- text -----
  612.  
  613. You're absolutely correct. 
  614. That is what the 8 and 24 stand for.
  615.  
  616. -- part contents for card part 31
  617. ----- text -----
  618.  
  619. No.  You should review the Product Description  and Technology sections.
  620.  
  621. -- part contents for card part 32
  622. ----- text -----
  623.  
  624. You‚Äôre right.   The Display cards can display 256 grays on all Apple Monitors
  625.  
  626. -- part contents for card part 34
  627. ----- text -----
  628.  
  629. Not quite, but a good guess. 
  630.  
  631.  
  632. -- part contents for card part 35
  633. ----- text -----
  634.  
  635. Correct! These Display cards supports Apple Convolution for interlaced displays.
  636.  
  637. -- part contents for card part 36
  638. ----- text -----
  639.  
  640. You may need to study 
  641. the Product Description more closely.
  642.  
  643. -- part contents for card part 37
  644. ----- text -----
  645.  
  646. You seem to have studied 
  647. the Product Description section well.
  648.  
  649. -- part contents for card part 41
  650. ----- text -----
  651. Click the mouse to continue.
  652.  
  653.  
  654. -- part contents for card part 45
  655. ----- text -----
  656. Instructions: 
  657. (click on this text to hide it)
  658.  
  659. 1.  Click on the   blank line. A list of choices appears.
  660.  
  661. 2.  Click on the choice you want, it appears in the sentence. 
  662.  
  663. You can change any of your choices by clicking on it, then selecting another choice.
  664.  
  665. 3.  When you‚Äôve completed the entries, click on the ‚ÄúCheck my Answers‚Äù button.
  666.  
  667. During the review, you‚Äôll find out whether you made the correct choices.
  668.  
  669. Afterwards, you can try again or go back to the menu for this section.